home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-10-22 | 392 b | 19 lines | [TEXT/KAHL] |
- // Copyright: © 1992 by Apple Computer, Inc., all rights reserved.
-
- #include "mtb.h"
-
- void DrawFrame (const Rect *trackFrame, long curSample)
- {
- Str255 numStr;
-
- ForeColor( redColor );
- PaintRect( trackFrame );
-
- ForeColor( blueColor );
- NumToString (curSample, numStr);
- MoveTo ( trackFrame->right / 2, trackFrame->bottom / 2);
- TextSize ( trackFrame->bottom / 3);
- DrawString (numStr);
- }
-
-